summaryrefslogtreecommitdiffstats
path: root/src/video_core/rasterizer_download_area.h
blob: 2d7425c79ca4a7cf11109393aac3829971f89d32 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// SPDX-FileCopyrightText: Copyright 2023 yuzu Emulator Project
// SPDX-License-Identifier: GPL-3.0-or-later

#pragma once

#include "common/common_types.h"

namespace VideoCore {

struct RasterizerDownloadArea {
    VAddr start_address;
    VAddr end_address;
    bool preemtive;
};

} // namespace VideoCore